home *** CD-ROM | disk | FTP | other *** search
/ Pesquisa Dirigida / Pesquisa Dirigida.iso / JOGOS / buscandoanemo.swf / scripts / frame_4 / DoAction.as
Text File  |  2005-01-17  |  639b  |  20 lines

  1. if(minDistance < Math.abs(endX - startX) || minDistance < Math.abs(endY - startY))
  2. {
  3.    duplicateMovieClip("bubble","bubble" + i,16384 + i);
  4.    _root["bubble" + i]._x = _root._xmouse;
  5.    _root["bubble" + i]._y = _root._ymouse;
  6.    _root["bubble" + i]._alpha = Math.random() * 75 + 25;
  7.    test = random(2);
  8.    if(test == 1)
  9.    {
  10.       _root["bubble" + i]._xscale = Math.random() * 100 + 10;
  11.       _root["bubble" + i]._yscale = _root["bubble" + i]._xscale;
  12.    }
  13.    else
  14.    {
  15.       _root["bubble" + i]._xscale = (- Math.random()) * 100 + 10;
  16.       _root["bubble" + i]._yscale = - _root["bubble" + i]._xscale;
  17.    }
  18.    i++;
  19. }
  20.